From: Eli Zaretskii Date: Fri, 3 Jul 2009 14:21:48 +0000 (+0000) Subject: (Ffile_attributes): Decode user and group names by the locale's encoding. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~11665 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=da37d831f8b5ef217949a4b6a9f48839d64ef882;p=emacs.git (Ffile_attributes): Decode user and group names by the locale's encoding. --- diff --git a/src/dired.c b/src/dired.c index 999d6683432..1c2149c7d2c 100644 --- a/src/dired.c +++ b/src/dired.c @@ -1012,11 +1012,11 @@ so last access time will always be midnight of that day. */) UNBLOCK_INPUT; } if (uname) - values[2] = build_string (uname); + values[2] = DECODE_SYSTEM (build_string (uname)); else values[2] = make_uid (&s); if (gname) - values[3] = build_string (gname); + values[3] = DECODE_SYSTEM (build_string (gname)); else values[3] = make_gid (&s);